*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "poppins";
    font-size: 62.5%;
}
body{
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.top-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 22vh;
}
.rubrik{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex: 1;
}
.top-container h1{
    font-size: 4rem;
    text-transform: uppercase;
    border-bottom: 1.4rem solid #006EC7;
}
.top-container h2{
    display: flex;
    margin-top: 10%;
    font-size: 1.6rem;
}
.landing{
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 4vh;
    width: 100vw;
    height: 48vh;
}
footer{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 26vh;
}
.bilder{
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  width: 90%;
  height: 20vh;
}
.utfyllnad{
  flex: 1;
  height: 100%;
}
.kött{
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.kött img{
    width: 18vw;
}
.sallad{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  padding-right: 10vw;
}
.salladsbar{
  padding-left: 9.9vw;
  border-left: 0.1vw solid black;
  height: 40vh;
}



.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
  }
  
  .spinner > div {
    background-color: white;
    height: 100%;
    width: 6px;
    display: inline-block;
    
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
  }
  
  .spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
  
  .spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  .spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
  
  .spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
  }
  
  @-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
    20% { -webkit-transform: scaleY(1.0) }
  }
  
  @keyframes sk-stretchdelay {
    0%, 40%, 100% { 
      transform: scaleY(0.4);
      -webkit-transform: scaleY(0.4);
    }  20% { 
      transform: scaleY(1.0);
      -webkit-transform: scaleY(1.0);
    }
  }

  .loading-wrapper{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      position: absolute;
      background-color: #006EC7;
      z-index: 10000;
  }


  @media screen and (max-width: 700px){
    .landing{
      flex-direction: column;
      width: 90%;
      align-items: center;
      justify-content: center;
      height: 120vh;
      margin: auto;
      justify-content: space-around;
    }
    .bilder{
      display: none;
    }
    .sallad{
      width: 100%;
      padding: 0;
    }
    .sallad img{
      width: 100%;
    }
    .salladsbar{
      width: 100%;
      padding: 0;
      border: none;
    }
    .salladsbar img{
      width: 90vw;
    }
    .top-container{
      justify-content: center;
      align-items: center;
      height: 60vh;
      flex-direction: column;
    }
    .rubrik{
      height: 30vh;
      width: 100%;
    }
    .kött{
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 34vh;
      margin-bottom: 6vh;
    }
    .utfyllnad{
      display: none;
    }
    .kött img{
      width: 70%;
    }
  }